home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Utilities
/
PC-SIG's World of Utilities (PC-SIG) (1994).iso
/
UPDATES
/
DISK3050.ZIP
/
DELDIR.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-05
|
202b
|
11 lines
echo off
if "%1"=="/?" goto usage
if "%1"=="" goto usage
d /Izd %1 %2 %3 %4 %5 %6 %7 %8 %9
goto exit
:usage
echo Delete named subdirectories and files
echo usage: DELDIR name1 name2 ..
:exit